binary search - перевод на Английский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

binary search - перевод на Английский

SEARCH ALGORITHM IN SORTED LISTS THAT OPERATES BY DECREASING THE SEARCH SPACE BY HALF EACH PASS
Binary chop; Binary search; Bsearch; Binary Search; Half-interval search; Half-interval search method; Half interval search method
  • Binary search can be adapted to compute approximate matches. In the example above, the rank, predecessor, successor, and nearest neighbor are shown for the target value <math>5</math>, which is not in the array.
  • binary-search
  • The worst case is reached when the search reaches the deepest level of the tree, while the best case is reached when the target value is the middle element.
  • tree]] representing binary search. The array being searched here is <math>[20, 30, 40, 50, 80, 90, 100]</math>, and the target value is <math>40</math>.
  • [[Binary search tree]]s are searched using an algorithm similar to binary search.
  • Visualization of [[exponential search]]ing finding the upper bound for the subsequent binary search
  • In [[fractional cascading]], each array has pointers to every second element of another array, so only one binary search has to be performed to search all the arrays.
  • Visualization of [[interpolation search]] using linear interpolation. In this case, no searching is needed because the estimate of the target's location within the array is correct. Other implementations may specify another function for estimating the target's location.
  • In noisy binary search, there is a certain probability that a comparison is incorrect.
  • [[Uniform binary search]] stores the difference between the current and the two next possible middle elements instead of specific bounds.
Найдено результатов: 670
binary search         

общая лексика

двоичный поиск

алгоритм поиска, заключающийся в том, что пространство поиска (search space) каждый раз делится пополам, после чего производится сравнение с элементом из середины выбранной половины и, таким образом, пространство поиска каждый раз уменьшается вдвое, в списке из миллиона элементов двоичный поиск может потребовать максимум 20 шагов

синоним

dichotomizing search

Смотрите также

backward search; exhaustive search; full text search; linear search; search

binary search         
(dichotomizing search) поиск делением пополам, двоичный поиск
binary chop         

[bainəri'tʃɔp]

вычислительная техника

двоичный поиск

поиск делением пополам

binary search tree         
  • The node <math>\text{D}</math> to be deleted has 2 children
DATA STRUCTURE IN TREE FORM WITH 0, 1, OR 2 CHILDREN PER NODE, SORTED FOR FAST LOOKUP
Binary Search Tree; Binary search trees; Ordered binary tree
дерево двоичного поиска
height-balanced tree         
  • Tree rotations are very common internal operations on self-balancing binary trees to keep perfect or near-to-perfect balance.
ANY NODE-BASED BINARY SEARCH TREE THAT AUTOMATICALLY KEEPS ITS HEIGHT SMALL
Balanced tree; Balanced binary search tree; Height-balanced binary search tree; Height-balanced tree; Self-balancing binary tree; Balanced binary tree; Height-balanced binary tree; SBB tree; Balanced trees; Admissible tree; Relaxed balance; Root balance; Binary self-balancing search tree

математика

сбалансированное по высоте дерево

balanced tree         
  • Tree rotations are very common internal operations on self-balancing binary trees to keep perfect or near-to-perfect balance.
ANY NODE-BASED BINARY SEARCH TREE THAT AUTOMATICALLY KEEPS ITS HEIGHT SMALL
Balanced tree; Balanced binary search tree; Height-balanced binary search tree; Height-balanced tree; Self-balancing binary tree; Balanced binary tree; Height-balanced binary tree; SBB tree; Balanced trees; Admissible tree; Relaxed balance; Root balance; Binary self-balancing search tree

теория графов

сбалансированное дерево

sequential search         
SEARCH ALGORITHM IN UNSORTED LISTS
Sequential search; Linear search algorithm
последовательный поиск
binary opposition         
PAIR OF RELATED TERMS OR CONCEPTS THAT ARE OPPOSITE IN MEANING
Binary order; Binary thinking; Binary oppositions; Binary pair; Opposition theory

['bainəriɔpɔ'ziʃ(ə)n]

лингвистика

бинарная оппозиция

search         
  • Abhay Bang with the Breath Counter he designed
  • Abhay and Rani Bang
  • Abhay and Rani Bang, along with their younger son Amrut
  • Abhay and Rani Bang
WIKIMEDIA DISAMBIGUATION PAGE
Searches; Search; Searchin' (disambiguation); Searching (disambiguation); Search (disambiguation); Serch; Computer search; Searching (song); Search (TV series)
1) исследовать, просачиваться
2) разыскивать
3) обыск
4) освещать прожектором
search         
  • Abhay Bang with the Breath Counter he designed
  • Abhay and Rani Bang
  • Abhay and Rani Bang, along with their younger son Amrut
  • Abhay and Rani Bang
WIKIMEDIA DISAMBIGUATION PAGE
Searches; Search; Searchin' (disambiguation); Searching (disambiguation); Search (disambiguation); Serch; Computer search; Searching (song); Search (TV series)
search 1. noun 1) поиски; I am in search of a house - я ищу себе дом; a search for a missing aircraft - поиски пропавшего самолета 2) обыск; right of search leg. - право обыска судов 3) исследование; изыскание 4) attr. поисковый 2. v. 1) искать; разыскивать; to search for a lost girl - разыскивать заблудившуюся девочку; to search after new remedies - разрабатывать новые средства лечения 2) шарить; обыскивать; производить обыск; to search a house - производить обыск в доме; to search one's memory - вспоминать, напрягая память 3) исследовать; to search one's heart - анализировать свои чувства 4) зондировать (рану) 5) проникать; the cold searched his marrow - он продрог до мозга костей - search after - search out - search through - search me! Syn: see hunt

Определение

поисковик
м.
Геолог, занимающийся поисками полезных ископаемых.

Википедия

Binary search algorithm

In computer science, binary search, also known as half-interval search, logarithmic search, or binary chop, is a search algorithm that finds the position of a target value within a sorted array. Binary search compares the target value to the middle element of the array. If they are not equal, the half in which the target cannot lie is eliminated and the search continues on the remaining half, again taking the middle element to compare to the target value, and repeating this until the target value is found. If the search ends with the remaining half being empty, the target is not in the array.

Binary search runs in logarithmic time in the worst case, making O ( log n ) {\displaystyle O(\log n)} comparisons, where n {\displaystyle n} is the number of elements in the array. Binary search is faster than linear search except for small arrays. However, the array must be sorted first to be able to apply binary search. There are specialized data structures designed for fast searching, such as hash tables, that can be searched more efficiently than binary search. However, binary search can be used to solve a wider range of problems, such as finding the next-smallest or next-largest element in the array relative to the target even if it is absent from the array.

There are numerous variations of binary search. In particular, fractional cascading speeds up binary searches for the same value in multiple arrays. Fractional cascading efficiently solves a number of search problems in computational geometry and in numerous other fields. Exponential search extends binary search to unbounded lists. The binary search tree and B-tree data structures are based on binary search.

Как переводится binary search на Русский язык